home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Scribefire-1.4.2 / scribefire-1.4.2-fx+fl.xpi / chrome / content / editor.xul < prev    next >
Encoding:
Extensible Markup Language  |  2007-07-23  |  44.4 KB  |  777 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <?xml-stylesheet href="chrome://performancing/skin/overlay.css" type="text/css"?>
  4. <?xml-stylesheet href="chrome://performancing/skin/bindings.css" type="text/css"?>
  5. <!DOCTYPE dialog [ 
  6.     <!ENTITY % performancingDTD SYSTEM "chrome://performancing/locale/overlay.dtd"> 
  7.     %performancingDTD;
  8.     <!ENTITY % performancingFallbackDTD SYSTEM "chrome://performancing/content/locale-default/overlay.dtd"> 
  9.     %performancingFallbackDTD; 
  10. ]>
  11. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  12.     id="performancing-mainwindow"
  13.     title="&performancing.editor.title;"
  14.     persist="screenX screenY width height" 
  15.     onload="loadPerFormancingUtil();" 
  16.     flex="1"
  17.     onunload="gPerformancingUtil.onPFFWindowClose();"
  18.     >
  19.     <stringbundle id="performancingstrings" src="chrome://performancing/locale/overlay.properties"/>
  20.     <stringbundle id="performancingstrings-fallback" src="chrome://performancing/content/locale-default/overlay.properties"/>
  21.     <script type="application/x-javascript" src="chrome://global/content/XPCNativeWrapper.js"></script>
  22.     <script type="application/x-javascript" src="chrome://performancing/content/midas.js"></script>
  23.     <script type="application/x-javascript" src="chrome://performancing/content/clipboard.js"></script>
  24.     <script type="application/x-javascript" src="chrome://performancing/content/editor.js"></script>
  25.     <script type="application/x-javascript" src="chrome://performancing/content/io.js"></script>
  26.     <script type="application/x-javascript" src="chrome://performancing/content/xmlrpc.js"></script>
  27.     <script type="application/x-javascript" src="chrome://performancing/content/performancingUtil.js"></script>
  28.     <script type="application/x-javascript" src="chrome://performancing/content/blogXML.js"></script>
  29.     <script type="application/x-javascript" src="chrome://performancing/content/performancing_api.js"></script>
  30.     <script type="application/x-javascript" src="chrome://performancing/content/history.js"></script>
  31.     <script type="application/x-javascript" src="chrome://performancing/content/pages.js"></script>
  32.     <script type="application/x-javascript" src="chrome://performancing/content/notes.js"></script>
  33.     <script type="application/x-javascript" src="chrome://performancing/content/addonskin.js"></script>
  34.     <!-- Firefox 2.0 and greater only -->
  35.     <script type="application/x-javascript" src="chrome://performancing/content/spellcheck.js"></script>
  36.     <script type="application/x-javascript" src="chrome://browser/content/utilityOverlay.js"></script>
  37.     <!-- Drag and Drop support -->
  38.     <script src="chrome://global/content/nsDragAndDrop.js"></script>
  39.     <script src="chrome://global/content/nsTransferable.js"></script>
  40.     <!-- Start Splitter -->
  41.     <popupset id="contentAreaContextSet">
  42.         <popup id="performancing-messagemenu"
  43.             onpopupshowing="performancingUI.theSpellcheck._doPopupItemEnabling(this);"
  44.             onpopuphiding="performancingUI.theSpellcheck._doPopupItemDisabling(this);">
  45.         <menuitem label="&pff-spellNoSuggestions.label;" id="spell-no-suggestions" disabled="true"/>
  46.         <menuitem label="&pff-spellAddToDictionary.label;" accesskey="&pff-spellAddToDictionary.accesskey;" id="spell-add-to-dictionary" oncommand="performancingUI.theSpellcheck.addToDictionary();"/>
  47.         <menuseparator id="spell-suggestions-separator"/>
  48.         <menuitem id="performancing-messagemenu_undo" label="undoCmd" command="cmd_undo"/>
  49.         <menuitem id="performancing-messagemenu_redo" label="redoCmd" command="cmd_redo"/>
  50.         <menuseparator id="performancing-messagemenu-sep-undo"/>
  51.         <menuitem id="performancing-messagemenu_cut" label="cutCmd" command="cmd_cut"/>
  52.         <menuitem id="performancing-messagemenu_copy" label="copyCmd" command="cmd_copy"/>
  53.         <menuitem id="performancing-messagemenu_paste" label="pasteCmd" command="cmd_paste"/>
  54.         <menuitem id="performancing-messagemenu_pastenf" label="pasteNoFormattingCmd" command="cmd_pasteNoFormatting" hidden="false"/>
  55.         <menuitem id="performancing-messagemenu_delete" label="deleteCmd" command="cmd_delete"/>
  56.         <menuseparator id="performancing-messagemenu-sep-cut"/>
  57.         <menuitem id="performancing-messagemenu_selectAll" label="selectAllCmd" command="cmd_selectAll"/>
  58.         <menuitem id="performancing-cm-fileupload" 
  59.             label="&performancing.imageupload.fileupload;"
  60.             accesskey="&performancing.imageupload.fileupload.key;"
  61.             oncommand="performancingUI.openFileUpload()"/>
  62.         <menuseparator id="spell-separator"/>
  63.         <menuitem id="spell-check-enabled"
  64.             label="&pff-spellEnable.label;"
  65.             type="checkbox"
  66.             accesskey="&pff-spellEnable.accesskey;"
  67.             oncommand="InlineSpellCheckerUI.toggleEnabled();"/>
  68.         <menuitem id="spell-add-dictionaries-main"
  69.             label="&pff-spellAddDictionaries.label;"
  70.             accesskey="&pff-spellAddDictionaries.accesskey;"
  71.             oncommand="performancingUI.theSpellcheck.addDictionaries();"/>
  72.             <menu id="spell-dictionaries"
  73.                 label="&pff-spellDictionaries.label;"
  74.                 accesskey="&pff-spellDictionaries.accesskey;">
  75.                 <menupopup id="spell-dictionaries-menu">
  76.                     <menuseparator id="spell-language-separator"/>
  77.                     <menuitem id="spell-add-dictionaries"
  78.                         label="&pff-spellAddDictionaries.label;"
  79.                         accesskey="&pff-spellAddDictionaries.accesskey;"
  80.                         oncommand="performancingUI.theSpellcheck.addDictionaries();"/>
  81.                 </menupopup>
  82.             </menu>
  83.         </popup>
  84.     </popupset>
  85. <box id="performancing-outerbox2" collapsed="false" flex="1">
  86. <commandset id="performancingcommands">
  87. <command id="cmd_undo" oncommand="performancing_undo();" label="&undoCmd.label;"/>
  88. <command id="cmd_redo" oncommand="performancing_redo();" label="&redoCmd.label;"/>
  89. <command id="cmd_cut" oncommand="performancing_cut();" label="&cutCmd.label;"/>
  90. <command id="cmd_copy" oncommand="performancing_copy();" label="©Cmd.label;"/>
  91. <command id="cmd_paste" oncommand="performancing_paste();" label="&pasteCmd.label;"/>
  92. <command id="cmd_pasteNoFormatting" oncommand="performancing_pastenoformatting();" label="&pasteNoFormattingCmd.label;" hidden="true"/>
  93. <command id="cmd_delete" oncommand="performancing_delete();" label="&deleteCmd.label;"/>
  94. <command id="cmd_selectAll" oncommand="performancing_selectAll();" label="&selectAllCmd.label;"/>
  95. <command id="cmd_spell" label="&performancing.editor.bar.spelling;" disabled="true"/>
  96. <command id="cmd_options" oncommand="ShowOptions()"/>
  97. <command id="cmd_help" oncommand="window.open('http://www.performancing.com/firefox/', 'Performancing', 'chrome,resizable,titlebar,dialog=no')"/>;
  98. <command id="cmd_bold" oncommand="performancingMidas.doSomeEditCommand('bold');"/>
  99. <command id="cmd_italic" oncommand="performancingMidas.doSomeEditCommand('italic');"/>
  100. <command id="cmd_strong" oncommand="performancingMidas.strong();"/>
  101. <command id="cmd_em" oncommand="performancingMidas.em();"/>
  102. <command id="cmd_underline" oncommand="performancingMidas.doSomeEditCommand('underline');"/>
  103. <command id="cmd_strikethrough" oncommand="performancingMidas.doSomeEditCommand('strikethrough');"/>
  104. <command id="cmd_blockquote" oncommand="performancingMidas.blockquote()"/>
  105. <command id="cmd_textincr" oncommand="performancingMidas.doSomeEditCommand('increasefontsize');"/>
  106. <command id="cmd_textdecr" oncommand="performancingMidas.doSomeEditCommand('decreasefontsize');"/>
  107. <command id="cmd_link" oncommand="performancingMidas.addLink();"/>
  108. <command id="cmd_insertimage" oncommand="performancingMidas.addImage();"/>
  109. <command id="cmd_ul" oncommand="performancingMidas.doSomeEditCommand('insertunorderedlist');"/>
  110. <command id="cmd_ol" oncommand="performancingMidas.doSomeEditCommand('insertorderedlist');"/>
  111. <command id="cmd_jleft" oncommand="performancingMidas.doSomeEditCommand('justifyleft');"/>
  112. <command id="cmd_jcenter" oncommand="performancingMidas.doSomeEditCommand('justifycenter');"/>
  113. <command id="cmd_jright" oncommand="performancingMidas.doSomeEditCommand('justifyright');"/>
  114. <command id="cmd_justify" oncommand="performancingMidas.doSomeEditCommand('justifyfull');"/>
  115. <command id="cmd_save" oncommand="gPerformancingNotes.doSave( document.getElementById('performancing-saveasnote-button'), false);"/>
  116. </commandset>
  117.  
  118. <keyset id="performancingkeys">
  119. <key id="key_open" key="&openCmd.key;" modifiers="accel" command="cmd_open"/>
  120. <key id="key_save" key="&saveCmd.key;" modifiers="accel" command="cmd_save"/>
  121. <key id="key_print" key="&printCmd.key;" modifiers="accel" command="cmd_print"/>
  122. <key id="key_logout" key="&key_logout.key;" modifiers="accel" command="cmd_logout"/>
  123. <key id="key_undo" key="&undoCmd.key;" modifiers="accel" command="cmd_undo"/>
  124. <key id="key_redo" key="&redoCmd.key;" modifiers="accel" command="cmd_redo"/>
  125. <key id="key_cut" key="&cutCmd.key;" modifiers="accel" command="cmd_cut"/>
  126. <key id="key_copy" key="©Cmd.key;" modifiers="accel" command="cmd_copy"/>
  127. <key id="key_paste" key="&pasteCmd.key;" modifiers="accel" command="cmd_paste"/>
  128. <key id="key_delete" key="&deleteCmd.key;" modifiers="accel" command="cmd_delete"/>
  129. <key id="key_selectAll" key="&selectAllCmd.key;" modifiers="accel" command="cmd_selectAll"/>
  130. <key id="key_spell" keycode="&key_spell.key;" command="cmd_spell"/>
  131. <key id="key_help" keycode="&key_help.key;" command="cmd_help"/>
  132. <key id="key_bold" key="&key_bold.key;" modifiers="accel" command="cmd_bold"/>
  133. <key id="key_italic" key="&key_italic.key;" modifiers="accel" command="cmd_italic"/>
  134. <key id="key_underline" key="&key_underline.key;" modifiers="accel" command="cmd_underline"/>
  135. <key id="key_link" key="&key_link.key;" modifiers="accel" command="cmd_link"/>
  136. </keyset>
  137.  
  138.  
  139. <hbox id="performancing-main-hbox" collapsed="false" flex="1" >
  140. <vbox id="performancing-navbar" collapsed="true">
  141.  
  142. <vbox id="performancing-navbar-tabs" class="performancing-navbar-tabs" align="left">
  143. <box id="performancing-editor-tab" name="editor" class="performancing-navbar-tab" value="&performancing.navbar.editor;" selected="true" />
  144. <box id="performancing-notes-tab" name="notes" class="performancing-navbar-tab" value="&performancing.navbar.notes;" collapsed="true" />
  145. <box id="performancing-technorati-tab" name="technorati" class="performancing-navbar-tab" value="&performancing.navbar.pagetools;" />
  146. <box id="performancing-delicious-tab" name="delicious" class="performancing-navbar-tab" value="&performancing.navbar.bookmarks;" />
  147. <box id="performancing-settings-tab" name="settings" class="performancing-navbar-tab" value="&performancing.navbar.settings;" />
  148. <box id="performancing-about-tab" name="about" class="performancing-navbar-tab" value="&performancing.navbar.about;" />
  149. <box id="performancing-addons-tab" name="addons" class="performancing-navbar-tab" value="&performancing.settings.tab.addons;" hidden="true" />
  150. <vbox id="performancing-navbar-tabs-addons">
  151. </vbox>
  152.  
  153. </vbox>
  154. </vbox>
  155. <vbox id="performancing-main-vbox" style="padding: 5px;" flex="1">
  156. <hbox flex="1" id="StartEditor">
  157. <hbox flex="1">
  158. <deck id="performancing-main-content-deck" selectedIndex="0" flex="1">
  159. <!-- Editor -->
  160. <vbox flex="1" id="performancing-editor-content">
  161. <hbox>
  162. <toolbarbutton id="performancing-navbar-toggle" state="closed" oncommand="performancingUI.toggleNavbar()" tooltiptext="&performancing.editor.bar.closesb.tt;" />
  163. <hbox id="edit-tab-hbox">
  164. <image id="tab-normal-edit" class="onpfftabhover" isselected="true" tooltiptext="&performancing.editor.tabs.rich;" onclick="performancingMidas.viewTab(this);"/>
  165. <image id="tab-source-edit" class="onpfftabhover" isselected="false" tooltiptext="&performancing.editor.tabs.source;" onclick="performancingMidas.viewTab(this)"/>
  166. <image id="tab-preview-edit" class="onpfftabhover" isselected="false" tooltiptext="&performancing.editor.tabs.preview;" onclick="performancingMidas.viewTab(this)"/>
  167. </hbox>
  168. <hbox flex="1">
  169. <label value="&performancing.editor.thetitle;" style="color: #000; font-size: small; font-weight: bold; margin-left: 10px;" />
  170. <!-- onkeyup="performancingUI.onSubjectKeyPress(this, event)" -->
  171. <textbox id="performancing-editor-subject" style="" multiline="false" flex="1" onfocus=""/>
  172. <button id="performancing-editor-extra-pub" label="&performancing.editor.button.publish;" oncommand="performancingUI.toggleExtraOptDeck(false);" hidden="true" />
  173. <toolbarbutton id="performancing-sidebarbutton" state="open" oncommand="performancingMidas.toggleSidebar()" tooltiptext="&performancing.editor.bar.closesb.tt;" />
  174. </hbox>
  175. </hbox>
  176. <hbox>
  177. <toolbox id="firstrowtoolbox" flex="1">
  178. <toolbar id="firstrowtoolbar" flex="1">
  179. <toolbarbutton id="bold-button" command="cmd_bold" tooltiptext="&performancing.editor.bar.bold.tt;"/>
  180. <toolbarbutton id="italic-button" command="cmd_italic" tooltiptext="&performancing.editor.bar.italic.tt;"/>
  181. <toolbarbutton id="underline-button" command="cmd_underline" tooltiptext="&performancing.editor.bar.underline.tt;"/>
  182. <toolbarbutton id="strikethrough-button" command="cmd_strikethrough" tooltiptext="&performancing.editor.bar.strikethrough.tt;"/>
  183. <toolbarseparator/>
  184. <toolbarbutton id="strong-button" command="cmd_strong" tooltiptext="&performancing.editor.bar.strong.tt;"/>
  185. <toolbarbutton id="em-button" command="cmd_em" tooltiptext="&performancing.editor.bar.em.tt;"/>
  186. <toolbarbutton id="blockquote-button" command="cmd_blockquote" tooltiptext="&performancing.editor.bar.quote.tt;"/>
  187. <toolbarseparator/>
  188. <toolbarbutton id="text-increase-button" command="cmd_textincr" tooltiptext="&performancing.editor.bar.incfont.tt;"/>
  189. <toolbarbutton id="text-decrease-button" command="cmd_textdecr" tooltiptext="&performancing.editor.bar.decfont.tt;"/>
  190. <toolbarseparator/>
  191. <toolbarbutton id="link-button" command="cmd_link" tooltiptext="&performancing.editor.bar.link.tt;"/>
  192. <toolbarbutton id="image-button" command="cmd_insertimage" tooltiptext="&performancing.editor.bar.image.tt;"/>
  193. <colorpicker  id="performance-color-picker" type="button" onchange="performancingMidas.doSomeEditCommand('forecolor',this.color);" tooltiptext="&performancing.editor.bar.color.tt;"/>
  194. <toolbarseparator/>
  195. <toolbarbutton id="orderedlist-button" command="cmd_ol" tooltiptext="&performancing.editor.bar.olist.tt;"/>
  196. <toolbarbutton id="unorderedlist-button" command="cmd_ul" tooltiptext="&performancing.editor.bar.ulist.tt;"/>
  197. <toolbarseparator/>
  198. <toolbarbutton id="justifyleft-button" command="cmd_jleft" tooltiptext="&performancing.editor.bar.leftjust.tt;"/>
  199. <toolbarbutton id="justifycenter-button" command="cmd_jcenter" tooltiptext="&performancing.editor.bar.centjust.tt;"/>
  200. <toolbarbutton id="justifyright-button" command="cmd_jright" tooltiptext="&performancing.editor.bar.rightjust.tt;"/>
  201. <toolbarbutton id="justifyjustified-button" command="cmd_justify" tooltiptext="&performancing.editor.bar.just.tt;"/>
  202. <spring flex="1"/>
  203.  
  204. </toolbar>
  205. </toolbox>
  206. </hbox>
  207. <deck id="performancing-feedback-deck"    selectedIndex="1" flex="1">
  208. <vbox flex="1">
  209. <spring flex="1"/>
  210. <groupbox minheight="100px" flex="1" pack="center" orient="vertical" align="center" class="feedbackdialog">
  211. <label id="performancing-feedback-text-1" style="font-weight: bold; font-size: medium;" value="&performancing.message.postsuccess;" />
  212. <label id="performancing-feedback-text-1" style="font-size: small;" value="&performancing.message.postsuccess.button;" hidden="false" />
  213. <separator class="thick"/>
  214. <hbox>
  215. <button id="performancing-feedback-button-1" class="normalButtons_" label="&performancing.button.ok;" oncommand="performancingUI.okClearPost(true)" />
  216. <button id="performancing-feedback-button-2" class="normalButtons_" label="&performancing.button.cancelkeep;" oncommand="performancingUI.okClearPost(false)" />
  217. <button id="performancing-feedback-button-3" class="normalButtons_" label="&performancing.link.viewblog;" oncommand="performancingUI.openInTab(document.getElementById('blog-group').selectedItem.getAttribute('tooltiptext'));" />
  218. </hbox>
  219. </groupbox>
  220. <spring flex="1"/>
  221. </vbox>
  222. <!-- <tabpanels flex="1"> -->
  223. <deck flex="1" id="performancing-editor-tabbox" selectedIndex="2">
  224. <vbox align="stretch" flex="1" id="midasview">
  225. <separator class="thin"/>
  226. <editor id="performancing-message" context="performancing-messagemenu" style="font-family: sans-serif; font-size: medium;" stretch="true" flex="1" value=" " class="inset iframe" src="chrome://performancing/content/blank.html" onfocus="performancingUI.onEditFocus();"/>
  227. </vbox>
  228. <vbox align="stretch" flex="1" id="source-vbox-view">
  229. <textbox id="performancing-message-source" style="" multiline="true" flex="1" onfocus="" context="performancing-messagemenu"/>
  230. </vbox>
  231. <vbox align="stretch" flex="1" id="preview-vbox-view">
  232. <iframe id="performancing-preview-display" stretch="true" style="font-family: sans-serif; font-size: medium;" src="chrome://performancing/content/blank2.html" flex="1" class="inset iframe"/>
  233. </vbox>
  234. </deck>
  235. </deck>
  236. <hbox flex="1" minheight="32px">
  237. <button id="performancing-saveasnote-button" label="&performancing.button.saveasnote;" minheight="32px" class="normalButtons_" maxheight="32px" oncommand="gPerformancingNotes.doSave(this, false);" hidden="false"/>
  238. <button     label="&performancing.button.clearcontent;" class="normalButtons_" oncommand="performancingUI.clearAll()"/>
  239. <button id="performancing-resavenote-button" label="&performancing.button.savenote;" class="normalButtons_" oncommand="gPerformancingNotes.reSaveNote(this, false);" hidden="true" collapsed="true"/>
  240. <spring flex="1"/>
  241. <hbox id="post-edit-buttons" hidden="true">
  242.     <deck id="delete-buttons">
  243.         <button id="delete-post" label="&performancing.sidebar.deletepost;" class="normalButtons_" oncommand="gPerformancingUtil.deleteHistoryItem();"/>
  244.         <button id="delete-page" label="&performancing.sidebar.deletepage;" class="normalButtons_" oncommand="gPerformancingUtil.deletePage();"/>
  245.     </deck>
  246.     <button id="performancing-republish-button" label="&performancing.button.republish;" class="normalButtons_" oncommand="gPerformancingUtil.editCurrentItem();"/>
  247. </hbox>
  248. <deck id="performancing-publish-deck" selectedIndex="0">
  249.  
  250. <button id="performancing-publish-button" label="&performancing.publish;" class="normalButtons_" maxheight="32px" oncommand="gPerformancingUtil.postCurrentItem();" />
  251.  
  252. <stack id="performancing-publish-imagebutton" onmouseover="performancingUI.onButtonHover(this)" onmouseout="performancingUI.onButtonHoverOut(this)" flex="1"  onclick="gPerformancingUtil.postCurrentItem();" style="display: none;">
  253.     <image id="performancing-publish-imagebutton2" hovered="false" />
  254.     <hbox id="performancing-publish-imagebutton3" pack="center" align="center">
  255.         <label value="&performancing.message.publishto;" style="color: #fff; font-weight: bold; font-size: x-small;" />
  256.         <label id="performancing-blogstatus" value="&performancing.message.noblogselected;" flex="1" crop="end" style="color: #fff; font-size: x-small; font-style: italic;"/>
  257.     </hbox>
  258. </stack>
  259.  
  260. <stack pack="center" align="center">
  261.     <vbox>
  262.         <image id="performancing-post-progress" tooltiptext="&performancing.message.publishingtoblog;" height="19px"/>
  263.     </vbox>
  264.     <vbox align="center">
  265.         <label value="&performancing.message.publishing;" style="color: #000; font-weight: bold; font-size: small;" />
  266.         <spring flex="1"/>
  267.     </vbox>
  268. </stack>
  269.  
  270. </deck>
  271. </hbox>
  272. </vbox>
  273.  
  274. <!-- Settings -->
  275. <vbox flex="1" id="performancing-settings-content" align="center" collapsed="false" style="">
  276. <tabbox id="pff-addon-tabbox" flex="1" context="">
  277. <tabs orient="horizontal" onselect="pffAddonSkin.onTabSwitch(this)">
  278. <tab id="performancing-tab-general" label="&performancing.settings.tab.general;" accesskey="&performancing.settings.tab.general.key;" collapsed="false"/>
  279. <tab id="performancing-tab-skin" label="&performancing.settings.tab.appearance;" accesskey="&performancing.settings.tab.appearance.key;" collapsed="false"/>
  280. <tab id="performancing-tab-addons" label="&performancing.settings.tab.addons;" accesskey="&performancing.settings.tab.addons;" collapsed="false"/>
  281. </tabs>
  282. <spacer width="4"/>
  283. <tabpanels id="pff-addon-tabpanels" class="performancing_tabpanels" flex="1">
  284. <!-- General -->
  285. <tabpanel id="performancing-settings-panel-general" class="white" orient="vertical" flex="1" context="">
  286. <vbox flex="1">
  287. <separator class="thick"/>
  288. <groupbox orient="horizontal" class="white" disabled="true">
  289. <caption label="&performancing.settings.general;" disabled="true"/>
  290. <vbox>
  291. <vbox>
  292. <checkbox id="performancing-settings-remember-editor" label="&performancing.settings.remember;" disabled="false" checked="true" pref="settings.saveonexit" oncommand="performancingUI.onBoolSettingsSet(this);" />
  293. <checkbox id="performancing-settings-display-onbottom-check" label="&performancing.settings.onbottom;" disabled="false" checked="true" pref="display.onbottom" oncommand="performancingUI.onBoolSettingsSet(this);" />
  294. <checkbox id="performancing-settings-display-cm-check" label="&performancing.settings.hidepffcm;" disabled="false" checked="false" pref="display.hideContextMenu" oncommand="performancingUI.onBoolSettingsSet(this);" />
  295. <checkbox id="performancing-settings-display-technorati" label="&performancing.settings.hidepagetools;" disabled="false" checked="false" pref="display.hidetechnorati" oncommand="performancingUI.onBoolSettingsSet(this);" />
  296. <checkbox id="performancing-settings-display-delicious" label="&performancing.settings.hidebookmarks;" disabled="false" checked="false" pref="display.hidedelicious" oncommand="performancingUI.onBoolSettingsSet(this);" />
  297. <checkbox id="performancing-settings-display-sortcats" label="&performancing.settings.sortcats;" disabled="false" checked="true" pref="display.sortcats" oncommand="performancingUI.onBoolSettingsSet(this);" />
  298. </vbox>
  299. </vbox>
  300. </groupbox>
  301. <groupbox orient="horizontal" class="white" disabled="true">
  302. <caption label="&performancing.settings.formatsettings;" disabled="true"/>
  303. <vbox>
  304. <vbox>
  305. <checkbox id="performancing-settings-display-usecss" label="&performancing.settings.usecssmsg;" disabled="false" checked="true" pref="settings.usecss" oncommand="performancingUI.onBoolSettingsSet(this);" />
  306. <checkbox id="performancing-settings-display-rtl" label="&performancing.settings.makertl;" disabled="false" checked="false" pref="display.enablertl" oncommand="performancingUI.onBoolSettingsSet(this);" />
  307. <spacer style="height: 5px"/>
  308. <label value="&performancing.settings.useextcss;" hidden="true"/>
  309. <textbox id="performancing-settings-cssurl" hidden="true" pref="performancing.content.preview.cssurl" onblur="performancingUI.cssPreviewSaveNLoad()" />
  310. </vbox>
  311. </vbox>
  312. </groupbox>
  313. <groupbox orient="horizontal" class="white" disabled="true">
  314. <caption label="&performancing.settings.publishingfeatures;" disabled="true"/>
  315. <vbox>
  316. <vbox>
  317. <checkbox id="performancing-settings-auto-draft" label="&performancing.settings.defaultdraft;" disabled="false" checked="false" pref="publish.checkdraft" oncommand="performancingUI.onBoolSettingsSet(this);" />
  318. <checkbox id="performancing-settings-show-extra-pub" label="&performancing.settings.showextra;" disabled="false" checked="true" pref="settings.showextrapuboptions" oncommand="performancingUI.onBoolSettingsSet(this);" />
  319. <checkbox id="performancing-settings-auto-technorati" label="&performancing.settings.autoinserttech;" disabled="false" checked="false" pref="extra.inserttechnorati" oncommand="performancingUI.onBoolSettingsSet(this);" />
  320. <checkbox id="performancing-settings-auto-pffpowered" label="&performancing.settings.insertpoweredbypff;" disabled="false" checked="false" pref="extra.insertpfftext2" oncommand="performancingUI.onBoolSettingsSet(this);" />
  321. </vbox>
  322. </vbox>
  323. </groupbox>
  324. <spring flex="1"/>
  325. </vbox>
  326. </tabpanel>
  327. <!-- Skin -->
  328. <tabpanel id="performancing-settings-panel-skin" class="white" orient="vertical" flex="1" context="">
  329. <groupbox orient="vertical" class="white" disabled="true" 
  330. ondragover="nsDragAndDrop.dragOver(event, pffCSSDragDropHandler)"
  331. ondragdrop="nsDragAndDrop.drop(event, pffCSSDragDropHandler)" >
  332. <caption label="&performancing.settings.skin.caption;" disabled="true"/>
  333. <vbox>
  334. <description flex="1">
  335. &performancing.settings.skin.desc;
  336. </description>
  337. <hbox>
  338. <listbox id="performancing-skin-list" flex="1">
  339. <listhead >
  340. <listheader label="&performancing.settings.skin.skinname;" />
  341. <listheader label="&performancing.settings.skin.author;"/>
  342. </listhead>
  343.  
  344. <listcols>
  345. <listcol/>
  346. <listcol flex="1" />
  347. </listcols>
  348. <listitem id="li-s-1" enabled="true" class="pffAddonBody" onclick="pffAddonSkin.onSkinListClick(this, event, '1')"  tooltiptext="Default theme for Performancing" selected="true" src="_default_">
  349. <listcell label="Default Theme" crop="end" /> 
  350. <listcell label="Performancing, Inc." crop="end" />
  351. </listitem>
  352.  
  353. </listbox>
  354. </hbox>
  355.  
  356. <hbox>
  357. <button label="&performancing.settings.skin.enableselected;" oncommand="pffAddonSkin.enableSelectedSkin();" />
  358. <button label="&performancing.settings.common.add;" oncommand="pffAddonSkin.addASkinFile();" />
  359. <button label="&performancing.settings.common.delete;" oncommand="pffAddonSkin.deleteASkinFile();" />
  360. </hbox>
  361. <spacer width="4"/>
  362. <label id="performancing-skin-desc-label" value="&performancing.settings.common.description;" hidden="true"/>
  363. <textbox id="performancing-skin-desc" readonly="true" multiline="true"    value="" style="-moz-appearance: none !important;" hidden="true"/>
  364. </vbox>
  365. <hbox align="center" pack="center">
  366. <label class="url" value="&performancing.settings.common.downloadmore;" onclick="performancingUI.openInTab('http://performancing.com/firefox/addons/');"/>
  367. </hbox>
  368. </groupbox>
  369. </tabpanel>
  370.  
  371. <!-- Addons -->
  372. <tabpanel id="performancing-settings-panel-addons" class="white" orient="vertical" flex="1" context="">
  373. <groupbox orient="vertical" class="white" disabled="true">
  374. <caption label="&performancing.settings.addon.caption;" disabled="true"/>
  375. <vbox>
  376. <description crop="end" value="&performancing.settings.addon.clicktoadd;" />
  377. <description crop="end" value="&performancing.settings.addon.morethanone;" />
  378.  
  379. <hbox>
  380. <listbox id="performancing-addon-list" flex="1">
  381. <listhead >
  382. <listheader label="&performancing.settings.addon.name;" />
  383. <listheader label="&performancing.settings.common.author;"/>
  384. <listheader label="&performancing.settings.addon.status;"/>
  385. </listhead>
  386.  
  387. <listcols>
  388. <listcol/>
  389. <listcol flex="1" />
  390. </listcols>
  391.  
  392.  
  393. <listitem id="li-a-0" onclick="performancingUI.openInTab('http://performancing.com/firefox/addons/');"    >
  394. <listcell>    
  395. <label value="&performancing.settings.addon.noninstalled;"/> 
  396. </listcell>
  397. <listcell label="&performancing.settings.common.clicktodownload;"/>
  398. <listcell id="li-a-enabled-i-1" label=""/>
  399. </listitem>
  400.  
  401. </listbox>
  402. </hbox>
  403. <hbox>
  404. <button label="&performancing.settings.common.add;" hidden="true"  />
  405. <button label="&performancing.settings.common.delete;" hidden="true" />
  406. </hbox>
  407. <spacer width="4"/>
  408. <label id="performancing-addon-desc-label" value="&performancing.settings.common.description;" hidden="true"/>
  409. <textbox id="performancing-addon-desc" readonly="true" multiline="true"     value="" style="-moz-appearance: none !important;" hidden="true"/>
  410. </vbox>
  411. <hbox align="center" pack="center">
  412. <label class="url" value="&performancing.settings.common.downloadmore;" onclick="performancingUI.openInTab('http://performancing.com/firefox/addons/');"/>
  413. </hbox>
  414.  
  415. </groupbox>
  416. </tabpanel>
  417.  
  418. </tabpanels>
  419. </tabbox>
  420. </vbox>
  421.  
  422. <!-- Technorati -->
  423. <vbox flex="1" id="performancing-technorati-content" collapsed="false" align="center" class="white" style="">
  424. <vbox flex="1" align="center" class="white" >
  425. <groupbox align="center" orient="vertical" flex="1" style="margin: 20px;">
  426. <caption label="&performancing.technorati.info;" />
  427. <hbox>
  428. <image id="performancing-technorati-loading-img" src="chrome://global/skin/throbber/Throbber-small.gif" tooltiptext="&performancing.technorati.loadinginfo;" hidden="false"/>
  429. <label id="performancing-technorati-title" align="center" style="font-size: x-large" value="&performancing.technorati.loading;"/>
  430. </hbox>
  431. <vbox id="performancing-technorati-search-vbox" align="center" flex="1">
  432. <label value="&performancing.technorati.searchtech;" />
  433. <hbox>
  434. <textbox id="performancing-technorati-srchtechnorati" onkeyup="performancingUI.onTechnoratiKeyPress(event)" />
  435. <button id="performancing-technorati-srch-button" label="&performancing.technorati.search;" oncommand="performancingUI.onTechnoratiSearch()" />
  436. </hbox>
  437. <image src="chrome://performancing/skin/technorati.gif" style="margin: 5px" class="url" onclick="performancingUI.openInTab('http://technorati.com/search/?partner=performancing')" />
  438. </vbox>
  439. <vbox align="left" flex="1">
  440. <hbox flex="1">
  441. <label align="center" style="font-size: large" value="&performancing.technorati.pageinfo;"/>
  442. <label id="performancing-technorati-currentpagetitle" class="url" align="center" crop="end" style="font-size: large; margin-left: 5px" value="_____"/>
  443. </hbox>
  444. <spacer style="height:10px"/>
  445. <hbox flex="1">
  446. <label align="center" style="" value="&performancing.technorati.thereare;"/>
  447. <label id="performancing-technorati-linkcount" align="center" style="margin-left: 5px; margin-right: 5px; color: red;" value="__"/>
  448. <label align="center" style="" value="&performancing.technorati.linkstopage;"/>
  449. <label id="performancing-technorati-blogcount" align="center" style="margin-left: 5px; margin-right: 5px; color: red;" value="__"/>
  450. <label align="center" style="" value="&performancing.technorati.blogslinking;"/>
  451. </hbox>
  452. <spacer style="height:10px"/>
  453. <vbox flex="1" align="center">
  454. <vbox id="performancing-technorati-inboundlinks" flex="1">
  455. <label value="&performancing.technorati.loadingpageinfo;" />
  456. </vbox>
  457. <spacer style="height:10px"/>
  458. <hbox align="right" flex="1">
  459. <label id="performancing-technorati-moreresults" value="&performancing.technorati.moreresults;" class="url" onclick="performancingUI.getPageInfo('technorati');"/>
  460. <label value="&performancing.technorati.refreshpageinfo;" class="url" style="text-decoration: underline; color: red;" onclick="performancingUI.getPageInfo('technorati');"/>
  461. </hbox>
  462. </vbox>
  463. </vbox>
  464. <spacer style="height:10px"/>
  465. <spring flex="1"/>
  466. </groupbox>
  467. <spring flex="1"/>
  468. </vbox>
  469. <spring flex="1"/>
  470. </vbox>
  471.  
  472. <!-- Delicious -->
  473. <vbox flex="1" id="performancing-delicious-content" class="white"  collapsed="false" align="center">
  474. <spring flex="1"/>                             
  475. <deck id="performancing-delicios-deck" selectedIndex="0" flex="1" class="white">
  476. <groupbox class="white" align="center" orient="vertical" flex="1">
  477. <caption label="&performancing.delicious.login;" />
  478. <label value="&performancing.delicious.loggedout;" />
  479. <hbox>
  480. <label value="&performancing.delicious.username;" /> 
  481. <textbox id="performancing-delicios-login-username" class="pff-forms" />
  482. </hbox>
  483. <hbox>
  484. <label value="&performancing.delicious.password;" /> 
  485. <textbox id="performancing-delicios-login-password" type="password"     class="pff-forms"/>
  486. </hbox>
  487. <vbox align="left">
  488. <hbox>
  489. <image id="performancing-delicios-loading-img" src="chrome://global/skin/throbber/Throbber-small.gif" tooltiptext="&performancing.delicious.loggingin;" hidden="true"/>
  490. <button id="performancing-delicios-login-submit" label="Login" oncommand="performancingUI.deliciousLogin()" />
  491. </hbox>
  492.  
  493. </vbox>
  494. </groupbox>
  495.  
  496. <groupbox class="white" orient="vertical" flex="1">
  497. <caption label="&performancing.delicious.service;" />
  498. <hbox>
  499. <vbox align="right" flex="1" hidden="false">
  500. <hbox>
  501. <label value="&performancing.delicious.reloadpage;" class="url" onclick="performancingUI.getPageInfo('delicious')"/>
  502. <hbox>
  503. <image id="performancing-delicios-saving-img" src="chrome://global/skin/throbber/Throbber-small.gif" tooltiptext="&performancing.delicious.savingpost;" hidden="true"/>
  504. <button label="&performancing.delicious.clear;" oncommand="performancingUI.deliciousClearBM()"/>
  505. <button label="&performancing.delicious.save;" oncommand="performancingUI.deliciousPostBookmark()"/>
  506. </hbox>
  507. </hbox>
  508. <hbox>
  509. <label value="&performancing.delicious.url;" />
  510. <textbox id="performancing-delicios-bookmark-url" class="pff-forms" />
  511. </hbox>
  512. <hbox>
  513. <label value="&performancing.delicious.description;" />
  514. <textbox id="performancing-delicios-bookmark-desc" multiline="true" class="pff-forms" />
  515. </hbox>
  516. <hbox>
  517. <label value="&performancing.delicious.tags;" />
  518. <textbox id="performancing-delicios-bookmark-tags" class="pff-forms" />
  519. </hbox>
  520. <hbox>
  521. <label value="&performancing.delicious.notes;" />
  522. <textbox id="performancing-delicios-bookmark-notes" multiline="true" class="pff-forms" />
  523. </hbox>
  524. </vbox>
  525.  
  526. <vbox class="pff-delicious-search" flex="1">
  527. <label value="&performancing.delicious.mytagsearch;" />
  528. <hbox>
  529. <textbox id="performancing-delicios-search-box" onkeyup="performancingUI.getKeys(this,event)" />
  530. <menulist label="&performancing.delicious.searchtype;" id="openIn" editable="false" hidden="true">
  531. <menupopup>
  532. <menuitem label="&performancing.delicious.tags;" selected="true"/>
  533. <menuitem label="&performancing.delicious.posts;"/>
  534. <menuitem label="&performancing.delicious.all;"/>
  535. </menupopup>
  536. </menulist>
  537. </hbox>
  538. <vbox id="performancing-delicios-tag-list"    height="150px">
  539. <label value="&performancing.delicious.loadingtags;" class="" width="200px" onclick="" />
  540. </vbox>
  541. </vbox>
  542.  
  543. </hbox>
  544. </groupbox>
  545. </deck>
  546. <hbox align="right">
  547. <checkbox id="performancing-delicios-login-save" label="&performancing.delicious.autologin;" checked="false" disabled="false" onclick="performancingUI.deliciousOnSaveCheck()" />
  548. </hbox>
  549. <spring flex="1"/>
  550. </vbox>
  551.  
  552. <!-- About -->
  553. <vbox flex="1" id="performancing-about-content" collapsed="false" class="white">
  554. <hbox flex="1" align="right">
  555. <groupbox class="white"     orient="vertical" flex="1" style="margin: 20px;">
  556. <vbox flex="1" align="right" >
  557. <image src="chrome://performancing/skin/ui/scribefire-logo-small.png" class="url"
  558. onclick="performancingUI.openInTab('http://performancing.com/');"/>
  559. <spacer style="height:5px"/>
  560. <text align="right" value="&performancing.about.version;"/>
  561. <spacer style="height:10px"/>
  562. <vbox flex="1" class="performance-about-desc-vbox">
  563. <description class="performance-about-desc" >&performancing.about.description;</description>
  564. <spacer style="height:10px"/>
  565. </vbox>
  566. </vbox>
  567. <spacer style="height:10px"/>
  568. <vbox flex="1">
  569. <hbox flex="1">
  570. <spring flex="1"/>
  571. <vbox align="center" style="border-right: 1px solid #000;">
  572. <label style="font-weight:bold; font-size: medium" wrap="true" value="&performancing.about.latestposts;" class="performancing-sidebar-background"/>
  573. <groupbox id="performancing-about-rss-box">
  574. <vbox>
  575. <label value="&performancing.about.refreshlist;" class="url" style="text-decoration: underline; color: red;" onclick="performancingUI.getAboutRSS();"/>
  576. </vbox>
  577. <vbox id="performancing-about-rss" flex="1" >
  578. <label value="&performancing.about.loadingfeeds;" class="" crop="end" onclick="performancingUI.openInTab('http://performancing.com/');" />
  579. </vbox>
  580. </groupbox>
  581. <vbox>
  582. <label style="font-weight:bold; font-size: medium" wrap="true" value="&performancing.about.gethelp;" class="performancing-sidebar-background"/>
  583. <label value="&performancing.about.pffhandbook;" onclick="performancingUI.openInTab('http://performancing.com/firefox/handbook')" class="url" />
  584. <label value="&performancing.about.supportforums;" onclick="performancingUI.openInTab('http://performancing.com/forum/firefox')" class="url" />
  585. <label value="&performancing.about.requests;" onclick="performancingUI.openInTab('http://performancing.com/project/issues')" class="url" />
  586. </vbox>
  587. </vbox>
  588. <vbox align="center">
  589. <vbox align="center" style="padding-bottom: 20px;">
  590. <label style="font-weight:bold; font-size: medium" wrap="true" value="&performancing.about.getrss;" class="performancing-sidebar-background"/>
  591. <vbox>
  592. <image src="chrome://performancing/skin/rss.png" style="margin: 5px;" class="url" onclick="performancingUI.openInTab('http://performancing.com/node/feed')" />
  593. <image src="chrome://performancing/skin/sub_blog.png" style="margin: 5px;" class="url" onclick="performancingUI.openInTab('http://www.bloglines.com/sub/http://www.performancing.com/node/feed')" />
  594. <image src="chrome://performancing/skin/image_myyahoo.png" style="margin: 5px;" class="url" onclick="performancingUI.openInTab('http://add.my.yahoo.com/content?url=http%3A//www.performancing.com/node/feed')" />
  595. </vbox>
  596. </vbox>
  597. <vbox style="padding: 20px">
  598. <label style="font-weight:bold; font-size: medium" wrap="true" value="&performancing.about.joinperformancing;" class="performancing-sidebar-background"/>
  599. <label value="&performancing.about.login;" onclick="performancingUI.openInTab('http://performancing.com/user/login')" class="url" />
  600. <label value="&performancing.about.register;" onclick="performancingUI.openInTab('http://performancing.com/user/register')" class="url" />
  601. <label value="&performancing.about.forums;" onclick="performancingUI.openInTab('http://performancing.com/forum')" class="url" />
  602. </vbox>
  603. </vbox>
  604. <spring flex="1"/>
  605. </hbox>
  606. <spacer style="height:10px"/>
  607. <vbox align="center" pack="center" flex="1" >
  608. <label style="font-weight:bold; font-size: medium" wrap="true" value="&performancing.credits;:"/>
  609. <description class="performance-about-desc">&performancing.about.credits;</description>
  610. </vbox>
  611. </vbox>
  612. <spring flex="1"/>
  613. </groupbox>
  614. </hbox>
  615. </vbox>
  616.  
  617. </deck>
  618. </hbox>
  619. <!-- // End Editor -->
  620. <vbox id="performancing-sidebar-outer">
  621. <vbox align="center">
  622. <hbox align="center">
  623. <image id="performancing-logo" updateavail="false" class="url" onclick="performancingUI.openInTab('http://scribefire.com/');"/>
  624. </hbox>
  625. </vbox>
  626. <deck id="performancing-editor-extra-pub-deck" selectedIndex="0" flex="1">
  627. <vbox id="performancing-sidebar" class="performancing-sidebar" collapsed="false" flex="1">
  628.     <hbox id="performancing-sidebarnav-hbox-0" selectedtab="1" class="performancing-sidebarnav" pack="center" flex="1" maxheight="20px">
  629.         <label value="&performancing.sidebar.blogs;" tooltiptext="&performancing.sidebar.blogs.tt;" id="performancing-sb-tab0" deck="1" class="performancing-sidebarnav-tab" selected="true" onclick="performancingUI.onSidebarTabSelect(this);" />
  630.         <label value="&performancing.sidebar.categories;" tooltiptext="&performancing.sidebar.categories.tt;" id="performancing-sb-tab1" deck="0" class="performancing-sidebarnav-tab" onclick="performancingUI.onSidebarTabSelect(this);" />
  631.         <label value="&performancing.sidebar.history;" tooltiptext="&performancing.sidebar.history.tt;" id="performancing-sb-tab2" deck="2" class="performancing-sidebarnav-tab" onclick="performancingUI.onSidebarTabSelect(this);" />
  632.         <label value="&performancing.sidebar.pages;" tooltiptext="&performancing.sidebar.pages.tt;" id="performancing-sb-tab4" deck="4" class="performancing-sidebarnav-tab" onclick="performancingUI.onSidebarTabSelect(this, true);" hidden="true"/>
  633.         <label value="&performancing.sidebar.notes;" tooltiptext="&performancing.sidebar.notes.tt;" id="performancing-sb-tab3" deck="3" class="performancing-sidebarnav-tab" onclick="performancingUI.onSidebarTabSelect(this);" hidden="false" />
  634.     </hbox>
  635.     <vbox id="performancing-sidebar-vbox" selectedIndex="0" flex="1">
  636.     
  637.         <!-- Blogs -->
  638.         
  639.         <vbox id="blog-sidebar-listing-1" class="performancing-categories" flex="1" collapsed="false">
  640.             <deck id="performancing-account-deck" selectedIndex="1" flex="1">
  641.                 <vbox flex="1">
  642.                     <groupbox flex="1">
  643.                         <radiogroup id="blog-group" flex="1">
  644.                             <grid>
  645.                                 <columns>
  646.                                     <column/>
  647.                                     <column flex="1"/>
  648.                                 </columns>
  649.                                 <rows id="blog-group-rows">
  650.                                 </rows>
  651.                             </grid>
  652.                         </radiogroup>
  653.                         <hbox pack="center">
  654.                             <button label="&performancing.sidebar.add;" oncommand="performancingUI.launchWindow('chrome://performancing/content/accountwizard.xul');" style="font-size: x-small;" maxheight="20px" />
  655.                             <button label="&performancing.sidebar.delete;" oncommand="gPerformancingUtil.deleteBlogEntry(this)" style="font-size: x-small;" maxheight="20px" />
  656.                         </hbox>
  657.                     </groupbox>
  658.                 </vbox>
  659.                 <vbox flex="1">
  660.                     <button label="&performancing.sidebar.accountwizard;" oncommand="performancingUI.launchWindow('chrome://performancing/content/accountwizard.xul');" />
  661.                 </vbox>
  662.             </deck>
  663.         </vbox>
  664.         
  665.         <!-- Categories -->
  666.         
  667.         <vbox id="blog-sidebar-listing-0" class="performancing-categories" flex="1" disabled="true" collapsed="true">
  668.             <groupbox flex="1">
  669.                 <vbox id="blog-sidebar-listing-categories" class="performancing-categories" flex="1" style="overflow: auto;">
  670.                     <checkbox label="&performancing.sidebar.loadingcats;" />
  671.                 </vbox>
  672.                 <hbox pack="center" align="center">
  673.                     <button id="blog-sidebar-categories-addbtn" label="&performancing.sidebar.addcats;" oncommand="performancingUI.addCategories();" hidden="true"/>
  674.                 </hbox>            
  675.             </groupbox>
  676.         </vbox>
  677.         
  678.         <!-- Post History -->
  679.         
  680.         <vbox id="blog-sidebar-listing-2" class="performancing-categories" flex="1" collapsed="true">
  681.             <listbox id="performancing-history-list" flex="1" disabled="false">
  682.                 <listcols flex="1" >
  683.                     <listcol flex="1" minwidth="50"/>
  684.                     <listcol flex="1"/>
  685.                 </listcols>
  686.                 <listitem disabled="false" hidden="false" tooltiptext="&performancing.sidebar.loadinghist;" label="&performancing.sidebar.loadinghist;"/>
  687.             </listbox>
  688.         </vbox>
  689.         
  690.         <!-- Notes -->
  691.         
  692.         <vbox id="blog-sidebar-listing-3" class="performancing-categories" flex="1" collapsed="true">
  693.             <hbox pack="center" align="center">
  694.                 <label value="&performancing.sidebar.search;" style=" font-size: small; font-weight: bold; color: #000"/> 
  695.                 <textbox id="performancing-search-notes-text" oninput="gPerformancingNotes.onNoteSearchChange();"/>
  696.             </hbox>
  697.             <listbox id="performancing-notes-list" flex="1">
  698.                 <listcols flex="1">
  699.                     <listcol flex="1" minwidth="50"/>
  700.                     <listcol flex="1"/>
  701.                 </listcols>
  702.                 <listitem disabled="false" hidden="false" tooltiptext="&performancing.sidebar.loadingnotes;" label="&performancing.sidebar.loadingnotes;"/>
  703.             </listbox>
  704.             <hbox pack="center" align="right">
  705.                 <button label="&performancing.sidebar.deletenote;" oncommand="gPerformancingNotes.deleteNoteEntry(this)" style="font-size: x-small;" maxheight="20px" />
  706.             </hbox>
  707.         </vbox>
  708.     
  709.         <!-- Pages -->
  710.         
  711.         <vbox id="blog-sidebar-listing-4" class="performancing-categories" flex="1" collapsed="true" hidden="true">
  712.             <listbox id="performancing-pages-list" flex="1" disabled="false">
  713.                 <listcols flex="1" >
  714.                     <listcol flex="1" minwidth="50"/>
  715.                     <listcol flex="1"/>
  716.                 </listcols>
  717.                 <listitem disabled="false" hidden="false" tooltiptext="&performancing.sidebar.loadingpages;" label="&performancing.sidebar.loadingpages;"/>
  718.             </listbox>
  719.             <hbox pack="center" align="right">
  720.                 <button label="&performancing.sidebar.deletepage;" oncommand="gPerformancingUtil.deletePage()" style="font-size: x-small;" maxheight="20px" />
  721.             </hbox>
  722.         </vbox>
  723.     </vbox>
  724. </vbox>
  725.  
  726. <vbox id="performancing-sidebar-extra-options" >
  727. <hbox align="center" id="performancing-sidebar-extra-navbar" pack="center">
  728. <label value="&performancing.sidebar.publishingoptions;" class="pffwhite-text" flex="1"/>
  729. <toolbarbutton id="performancing-close-extra-opts" align="right"
  730. tooltiptext="&performancing.sidebar.closeextra;" class="url"
  731. oncommand="performancingUI.toggleExtraOptDeck(false);"/>
  732. </hbox>
  733. <vbox class="pff-sidebar-border">
  734. <checkbox id="performancing-draft-checkbox" label="&performancing.sidebar.postasdraft;" hidden="false"/>
  735.  
  736. <separator class="thick"/>
  737. <label value="&performancing.sidebar.technoratitags;" class="extra-options" />
  738. <textbox id="performancing-technorati-tags" />
  739. <label value="&performancing.sidebar.commaseperated;" class="extra-options-desc" />
  740. <label id="performancing-technorati-extrainfo" value="&performancing.sidebar.autoaddmsg;" class="extra-options-desc" />
  741. <button id="performancing-technorati-tags-button" label="&performancing.sidebar.addtagsbutton;" oncommand="performancingUI.insertTechnorati();" />
  742. <checkbox id="performancing-addto-delicious-checkbox" checked="false" label="&performancing.sidebar.bookmarkposts;" hidden="false"/>
  743.  
  744. <separator class="thick"/>
  745. <label value="&performancing.sidebar.trackbackurl;" class="extra-options" hidden="false" />
  746. <textbox id="performancing-trackback-textbox" hidden="false" />
  747. <label value="&performancing.sidebar.commaseperated;" class="extra-options-desc" hidden="false"/>
  748.  
  749. <separator class="thick"/>
  750.  
  751. <checkbox id="performancing-enablepings-checkbox" oncommand="document.getElementById('performancing-pinglist-mainbox').collapsed = !document.getElementById('performancing-pinglist-mainbox').collapsed;" checked="false" label="&performancing.sidebar.enablepings;" hidden="false" />
  752. <vbox collapsed="true" id="performancing-pinglist-mainbox">
  753. <radiogroup id="performancing-pingradio-group">
  754. <radio id="performancing-radio-pingomatic" value="pingomatic" label="Ping-O-Matic" selected="true" oncommand="document.getElementById('performancing-pinglist-vbox').collapsed = true;" />
  755. <radio id="performancing-radio-pingat" value="pingoat" label="PingoAt" oncommand="document.getElementById('performancing-pinglist-vbox').collapsed = true;"/>
  756. <radio id="performancing-radio-custom" value="custom" label="&performancing.sidebar.custom;" oncommand="document.getElementById('performancing-pinglist-vbox').collapsed = false;" />
  757. </radiogroup>
  758. <vbox id="performancing-pinglist-vbox" collapsed="true" style="margin: 5px;">
  759. <checkbox id="performancing-pinglist-technorati" url="http://rpc.technorati.com/rpc/ping" label="Technorati" />
  760. <checkbox id="performancing-pinglist-weblogs" url="http://rpc.weblogs.com/RPC2" label="Weblogs" />
  761. <checkbox id="performancing-pinglist-blogs" url="http://ping.blo.gs/" label="Blo.gs" />
  762. <checkbox id="performancing-pinglist-blogrolling" url="http://rpc.blogrolling.com/pinger/" label="Blogrolling" />
  763. <checkbox id="performancing-pinglist-icerocket" url="http://rpc.icerocket.com:10080/" label="Icerocket" />
  764. </vbox>
  765. </vbox>
  766. </vbox>
  767. </vbox>
  768. </deck>
  769. </vbox>
  770.  
  771. </hbox>
  772. </vbox>
  773. </hbox>
  774. </box>
  775.  
  776. </window>
  777.